home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1998 September / Macworld (1998-09).dmg / Serious Demos / MacWebCam 2.7 / Sample AppleScripts / Background scripts < prev    next >
Text File  |  1997-01-12  |  508b  |  15 lines

  1. -- Example AppleScript to show how to get/set various parameters
  2.  
  3. tell application "MacWebCam"
  4.     get file of background of active document
  5.     get video offset of background of active document
  6.     get active of background of active document
  7.     get transfer mode of background of active document
  8. end tell
  9.  
  10. tell application "MacWebCam"
  11.     --set video offset of background of document 1 to {5, 50}
  12.     --set active of background of document 1 to false
  13.     --set transfer mode of background of document 1 to transparent
  14. end tell
  15.